GtkPopoverMenus should mimic menus. Commit
d936967b7a8 introduced
some CSS related to menu popovers, however, it hardcodes 'white'
as the background color. That is problematic for the dark theme.
Use '$menu_color' instead of 'white', since $menu_color both
guarantees menu popovers and menus match, and already handles
different colors for dark and light theme variants.
}
&.background contents {
- background: white;
+ background-color: $menu_color;
}
&.background separator {
popover.menu box.circular-buttons { padding-bottom: 5px; }
-popover.menu.background contents { background: white; }
+popover.menu.background contents, popover.menu arrow { background-color: #2f2f2f; }
popover.menu.background separator { margin: 5px 0px; }
popover.menu box.circular-buttons { padding-bottom: 5px; }
-popover.menu.background contents { background: white; }
+popover.menu.background contents, popover.menu arrow { background-color: #ffffff; }
popover.menu.background separator { margin: 5px 0px; }